min

pure function min(value: big_integer): big_integer

Returns the lesser of this and another big_integer value; i.e. value if value is less than this, or this big_integer otherwise.

Return

the lesser of value and this big_integer

Since

0.12.0

Parameters

value

the value to compare against


pure function min(value: decimal): decimal

Returns the numerically lesser of this big_integer a decimal value; i.e. value if value is less than this big_integer, or this big_integer otherwise.

Return

the lesser of value and this big_integer

Since

0.12.0

Parameters

value

the decimal value to compare against